home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / include / amiga20 / clib / rexxsyslib_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-11  |  1.2 KB  |  43 lines

  1. #ifndef  CLIB_REXXSYSLIB_PROTOS_H
  2. #define  CLIB_REXXSYSLIB_PROTOS_H
  3. /*
  4. **    $Filename: clib/rexxsyslib_protos.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 30.156 $
  7. **    $Date: 1995/01/11 05:18:14 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. /* "rexxsyslib.library" */
  15. /*--- functions in V33 or higher (distributed as Release 1.2) ---*/
  16. #ifndef  EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19. #ifndef  REXX_RXSLIB_H
  20. #include <rexx/rxslib.h>
  21. #endif
  22. #ifndef  REXX_REXXIO_H
  23. #include <rexx/rexxio.h>
  24. #endif
  25. /**/
  26. /**/
  27. UBYTE *CreateArgstring( UBYTE *string, unsigned long length );
  28. void DeleteArgstring( UBYTE *argstring );
  29. ULONG LengthArgstring( UBYTE *argstring );
  30. struct RexxMsg *CreateRexxMsg( struct MsgPort *port, UBYTE *extension,
  31.     UBYTE *host );
  32. void DeleteRexxMsg( struct RexxMsg *packet );
  33. void ClearRexxMsg( struct RexxMsg *msgptr, unsigned long count );
  34. BOOL FillRexxMsg( struct RexxMsg *msgptr, unsigned long count,
  35.     unsigned long mask );
  36. BOOL IsRexxMsg( struct RexxMsg *msgptr );
  37. /**/
  38. /**/
  39. void LockRexxBase( unsigned long resource );
  40. void UnlockRexxBase( unsigned long resource );
  41. /**/
  42. #endif     /* CLIB_REXXSYSLIB_PROTOS_H */
  43.